 :root {
    --primary-color: #2c7da0;      /* Medical Blue */
    --secondary-color: #e9f5ff;    /* Light Clinic Blue */
    --accent-color: #25d366;       /* WhatsApp Green */
}

body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

.navbar {
    background-color: #e9f5ff; /* Soft Medical Blue */
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.navbar-brand {
    font-size: 18px;
    line-height: 1.2;
    color: var(--primary-color) !important;
}
.navbar-brand span {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}
/* Navbar links – Clinic Style */
.navbar-nav .nav-link {
    color: #0b3c5d;
    font-weight: 500;
    padding: 10px 18px;
    margin: 0 6px;
    border-radius: 30px;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover effect */
.navbar-nav .nav-link:hover {
    background: #cfe9ff;
    color: #0b3c5d;
    transform: translateY(-2px);
}

.banner-section {
    background-color: #0b3c5d;
    height: 50vh;
}
.hero-banner {
    width: 100%;
    background: linear-gradient(135deg, #0d6efd, #084298);
}

.banner-content {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.banner-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 18px;
    opacity: 0.95;
    margin: 0;
}

/* Mobile View */
@media (max-width: 768px) {

    .banner-content {
        min-height: 200px;
        padding: 15px;
    }

    .banner-content h1 {
        font-size: 22px;
        line-height: 1.3;
        word-break: break-word;
    }
}

.physio-content {
    padding: 50px 0;
}

.physio-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.physio-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #0d6efd;
}

/* Mobile View */
@media (max-width: 768px) {

    .physio-content {
        padding: 25px 15px;
    }

    .physio-content p {
        font-size: 14.5px;
        line-height: 1.7;
        text-align: justify;
    }

    .physio-content h3 {
        font-size: 19px;
        margin-top: 25px;
    }
}


.image-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Mobile View */
@media (max-width: 768px) {
    .image-banner {
        padding: 0 10px;
    }

    .image-banner img {
        border-radius: 8px;
    }
}

        .service-card {
            border: none;
            transition: transform 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .service-card:hover { transform: translateY(-10px); }

        .contact-box {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

     .footer-section {
  background: #ffffff;
  padding: 60px 0;
  border-top: 1px solid #eee;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}


.footer-title a {
  text-decoration: none; 
  color: inherit;        
  transition: 0.3s;      
}


.footer-title a:hover {
  color: #0d6efd;        
}

.footer-text {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

.footer-links,
.footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-hours li {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
}

.footer-links li a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #0d6efd;
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #f2f2f2;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin-right: 8px;
  color: #0d6efd;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #0d6efd;
  color: #fff;
}
.social-icons a i {
  font-size: 18px; 
  display: block;  
}

.footer {  color: black; padding: 20px 0; margin-top: 50px; } 